Recently I found an issue with ckeditor5. When there is an & character in link it gets converted &.
Is there a way to turn this & conversion off?
example:
user enters https://stackoverflow.com/q&a
getData() returns (...) href=https://stackoverflow.com/q&a" (...)
Expected getData() to return (...) href=https://stackoverflow.com/q&a" (...)
The text is later sent out in email and links containing & are broken.